home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
gnu
/
othergnu
/
bc102s.zoo
/
diffs
< prev
next >
Wrap
Text File
|
1992-06-20
|
910b
|
34 lines
*** orig/scan.l Sat Jun 20 18:35:56 1992
--- scan.l Sat Jun 20 18:38:34 1992
***************
*** 28,34 ****
--- 28,38 ----
*************************************************************************/
#include "bcdefs.h"
+ #ifdef atarist
+ #include "y_tab.h"
+ #else
#include "y.tab.h"
+ #endif
#include "global.h"
#include "proto.h"
***************
*** 104,110 ****
\+\+|-- { yylval.c_value = yytext[0]; return(INCR_DECR); }
"\n" { line_no++; return(NEWLINE); }
\\\n { line_no++; /* ignore a "quoted" newline */ }
! [ \t]+ { /* ignore spaces and tabs */ }
"/*" {
int c;
--- 108,114 ----
\+\+|-- { yylval.c_value = yytext[0]; return(INCR_DECR); }
"\n" { line_no++; return(NEWLINE); }
\\\n { line_no++; /* ignore a "quoted" newline */ }
! [ \t\r]+ { /* ignore spaces and tabs and carriage returns. was: [ \t]+ */ }
"/*" {
int c;